15. Quiz: Yosa Buson (2-6)

Directions:

Build a string using concatenation by combining the lines from this famous haiku poem by Yosa Buson.

Blowing from the west
Fallen leaves gather
In the east.

Each string should be printed on its own line.

Hint: You will need to use special characters to produce the following output. For a refresher, feel free to review the previous Escaping Strings lesson in this course.

Your Code:

Start Quiz:

/*
 * Programming Quiz: Yosa Buson (2-6)
 */

var haiku = /* concatenate the strings here */
console.log(haiku);

INSTRUCTOR NOTE:

Have questions? Head to Knowledge for discussion with the Udacity Community.